{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://openprint.art/schemas/artwork/v0.1.json",
  "title": "Open Print artwork record",
  "type": "object",
  "required": [
    "schemaVersion",
    "id",
    "title",
    "artist",
    "source",
    "files"
  ],
  "properties": {
    "schemaVersion": {
      "const": "0.1"
    },
    "id": {
      "type": "string",
      "minLength": 1
    },
    "title": {
      "type": "string",
      "minLength": 1
    },
    "artist": {
      "type": "object",
      "required": [
        "name",
        "identifier"
      ],
      "properties": {
        "name": {
          "type": "string"
        },
        "identifier": {
          "type": "string"
        }
      },
      "additionalProperties": true
    },
    "source": {
      "type": "object",
      "required": [
        "repository",
        "commit"
      ]
    },
    "files": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "path",
          "mediaType",
          "sha256"
        ]
      }
    }
  },
  "additionalProperties": true
}
