{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$id": "https://schema.twindev.org/w3c-activity-streams/ActivityStreamsImage",
    "title": "ActivityStreamsImage",
    "description": "A W3C Activity Streams Image.\n\nAn `Image` is an image document of any kind.",
    "type": "object",
    "properties": {
        "type": {
            "anyOf": [
                {
                    "const": "Image"
                },
                {
                    "type": "string"
                },
                {
                    "type": "array",
                    "items": {
                        "anyOf": [
                            {
                                "const": "Image"
                            },
                            {
                                "type": "string"
                            }
                        ]
                    }
                }
            ],
            "description": "Image type."
        }
    },
    "required": [
        "type"
    ],
    "allOf": [
        {
            "$ref": "https://schema.twindev.org/w3c-activity-streams/ActivityStreamsObject"
        }
    ]
}
