Skip to content

Latest commit

 

History

History
48 lines (47 loc) · 906 Bytes

export-output-standard.rst

File metadata and controls

48 lines (47 loc) · 906 Bytes
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "required": [
    "_id",
    "title",
    "year"
  ],
  "properties": {
    "_id": {
      "$ref": "#/$defs/ObjectId"
    },
    "genres": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "plot": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "year": {
      "type": "integer"
    }
  },
  "$defs": {
    "ObjectId": {
      "type": "object",
      "properties": {
        "$oid": {
          "type": "string",
          "pattern": "^[0-9a-fA-F]{24}$"
        }
      },
      "required": [
        "$oid"
      ],
      "additionalProperties": false
    }
  }
}