{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProjectIdentifiers",
"title": "ProjectIdentifiers",
"additionalProperties": false,
"description": "Identifiers for a project.",
"properties": {
"id": {
"description": "The ID of the created project.",
"format": "int64",
"readOnly": true,
"type": "integer"
},
"key": {
"description": "The key of the created project.",
"readOnly": true,
"type": "string"
},
"self": {
"description": "The URL of the created project.",
"format": "uri",
"readOnly": true,
"type": "string"
}
},
"required": [
"id",
"key",
"self"
],
"type": "object"
}