{
  "$defs": {
    "ClassType": {
      "enum": [
        "Dataset",
        "Software",
        "MLModel",
        "Computation",
        "Annotation",
        "Schema",
        "EvidenceGraph",
        "AnnotatedComputation",
        "AnnotatedEvidenceGraph",
        "ROCrate"
      ],
      "title": "ClassType",
      "type": "string"
    }
  },
  "additionalProperties": true,
  "description": "Refers to the Fairscape BaseModel inherited from Pydantic\n\nArgs:\n    BaseModel (Default Pydantic): Every instance of the Fairscape BaseModel must contain\n    an id, a type, and a name",
  "properties": {
    "@id": {
      "title": "guid",
      "type": "string"
    },
    "@type": {
      "$ref": "#/$defs/ClassType",
      "title": "metadataType"
    },
    "name": {
      "title": "Name",
      "type": "string"
    },
    "@context": {
      "anyOf": [
        {
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        },
        {
          "type": "null"
        }
      ],
      "default": {
        "@vocab": "https://schema.org/",
        "evi": "https://w3id.org/EVI#",
        "rai": "http://mlcommons.org/croissant/RAI/",
        "prov": "http://www.w3.org/ns/prov#",
        "usedSoftware": {
          "@id": "https://w3id.org/EVI#usefdSoftware",
          "@type": "@id"
        },
        "usedDataset": {
          "@id": "https://w3id.org/EVI#usedDataset",
          "@type": "@id"
        },
        "generatedBy": {
          "@id": "https://w3id.org/EVI#generatedBy",
          "@type": "@id"
        },
        "generated": {
          "@id": "https://w3id.org/EVI#generated",
          "@type": "@id"
        },
        "annotates": {
          "@id": "https://w3id.org/EVI#annotates",
          "@type": "@id"
        },
        "hasDistribution": {
          "@id": "https://w3id.org/EVI#hasDistribution",
          "@type": "@id"
        }
      },
      "title": "context"
    },
    "url": {
      "anyOf": [
        {
          "format": "uri",
          "minLength": 1,
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Url"
    }
  },
  "required": [
    "@id",
    "@type",
    "name"
  ],
  "title": "FairscapeBaseModel",
  "type": "object"
}