Sha256: 9c5bf17714d5b4001581f0bbc0e4ef9bee996ab54ec02e07205934deb046de30

Contents?: true

Size: 1.96 KB

Versions: 1

Compression:

Stored size: 1.96 KB

Contents

{
  "id": "schema.json#",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "version": "2.0.0-beta.5",
  "description": "schema for ADIwg mdJSON metadata",
  "example": "../examples/mdJson.json",
  "type": "object",
  "required": ["schema", "contact"],
  "properties": {
    "schema": {
      "$ref": "#/definitions/schema"
    },
    "contact": {
      "type": "array",
      "description": "An array of contacts to be referenced throughout the metadata. Any contact used in the metadata record must be stored within this array and referenced by contactId. Items in array may be used 0-n times throughout the record.",
      "minItems": 1,
      "uniqueItems": true,
      "items": {
        "$ref": "contact.json"
      }
    },
    "metadata": {
      "$ref": "metadata.json"
    },
    "metadataRepository": {
      "type": "array",
      "description": "Identifies repositories for distribution of the resource metadata.",
      "uniqueItems": true,
      "items": {
        "$ref": "metadataRepository.json"
      }
    },
    "dataDictionary": {
      "type": "array",
      "description": "A description of the contents, format and structure of the physical objects in a data resource.",
      "translation": {
        "ISO 19115-2": ["FC_FeatureCatalogue"]
      },
      "example": "../examples/dataDictionary.json",
      "items": {
        "$ref": "dataDictionary.json"
      }
    }
  },
  "definitions": {
    "schema": {
      "type": "object",
      "description": "Identifies the version of the JSON schema standard that applies to the metadata.",
      "required": ["name", "version"],
      "additionalProperties": true,
      "properties": {
        "name": {
          "type": "string",
          "description": "Schema identifier, i.e. the name of the schema standard."
        },
        "version": {
          "type": "string",
          "description": "Specific version number of the schema standard.",
          "pattern": "[0-9]\\.[0-9]\\.[0-9]"
        }
      }
    }
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
adiwg-mdjson_schemas-2.0.0.pre.beta.5 schema/schema.json