{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$id": "https://schema.twindev.org/w3c-activity-streams/ActivityStreamsOrganization",
    "title": "ActivityStreamsOrganization",
    "description": "A W3C Activity Streams Organization.\n\nAn `Organization` represents an organization.",
    "type": "object",
    "properties": {
        "type": {
            "anyOf": [
                {
                    "const": "Organization"
                },
                {
                    "type": "string"
                },
                {
                    "type": "array",
                    "items": {
                        "anyOf": [
                            {
                                "const": "Organization"
                            },
                            {
                                "type": "string"
                            }
                        ]
                    }
                }
            ],
            "description": "Organization type."
        }
    },
    "required": [
        "type"
    ],
    "allOf": [
        {
            "$ref": "https://schema.twindev.org/w3c-activity-streams/ActivityStreamsActor"
        }
    ]
}
