{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$id": "https://aiep.dev/schemas/aiep.discovery.schema.v1.json",
    "title": "AIEP Discovery Record v1",
    "description": "Machine-readable endpoint discovery map for an AIEP-compliant node (/.well-known/aiep/discovery.json).",
    "type": "object",
    "required": [
        "metadata",
        "version"
    ],
    "properties": {
        "metadata": {
            "type": "string"
        },
        "version": {
            "type": "string"
        },
        "schemas": {
            "type": "string"
        },
        "artefacts": {
            "type": "string"
        },
        "compliance": {
            "type": "string"
        },
        "registry": {
            "type": "string"
        },
        "certificates": {
            "type": "string"
        },
        "audit": {
            "type": "string"
        },
        "innovation_ledger": {
            "type": "string"
        }
    },
    "additionalProperties": true
}