{
    "id": "http://www.ubisoft.com/ugc/acd/v1/npcs/birthlocations#",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "JSON Schema for Assassin's Creed Dynasty UGC",
    "BirthLocations": {
        "oneOf": [
            {
                "$ref": "#/definitions/AINode"
            }
        ]
    },
    "definitions": {
        "AINode": {
            "type": "object",
            "properties": {
                "Type": {
                    "type": "string",
                    "enum": [
                        "AINode"
                    ]
                },
                "NodeID": {
                    "$ref": "http://www.ubisoft.com/ugc/acd/v1/types#ObjectId"
                }
            },
            "required": [
                "NodeID"
            ],
            "additionalProperties": false
        }
    }
}