{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "id": "cerbos:///identity_and_tenant_owned_resource.json",
    "title": "Generic schema for describing resources owned by an identity and tenant.",
    "type": "object",
    "properties": {
        "identity_uuid": {
            "type": "string"
        },
        "tenant": {
            "$ref": "cerbos:///tenant.json"
        }
    },
    "anyOf":[
      {"required": ["identity_uuid"]},
      {"required": ["tenant"]}
    ]
}
