{
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [],
"properties": {
"files": {
"order": 1,
"items": {
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"link"
],
"properties": {
"document": {
"type": "string",
"description": "Document name",
"order": 1
},
"link": {
"type": "string",
"description": "Url link to the file",
"order": 2
}
},
"type": "object",
"$id": "https://firstlink.world/schemas/types/file.json",
"title": "File",
"description": "File associated with the entity"
},
"type": "array",
"description": "Files associated with the entity"
},
"metadata": {
"order": 2,
"properties": {
"language": {
"order": 3,
"type": "string",
"enum": [
"EN",
"MT",
"IT",
"DE",
"FR"
],
"description": "Data language code",
"default": "EN"
},
"extracted_date": {
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"order": 1,
"type": "string",
"description": "Date when data was extracted"
}
},
"type": "object",
"description": "Metadata information"
}
},
"type": "object",
"$id": "https://firstlink.world/schemas/entity_schema.json",
"description": "Standard Entity Data Schema - Main Entry Point"
}