identity.json 478 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
{
  "type": "object",
  "required": [
    "id",
    "description",
    "name",
    "name_with_namespace",
    "path",
    "path_with_namespace",
    "created_at"
  ],
  "properties": {
    "id": { "type": "integer" },
    "description": { "type": ["string", "null"] },
    "name": { "type": "string" },
    "name_with_namespace": { "type": "string" },
    "path": { "type": "string" },
    "path_with_namespace": { "type": "string" },
    "created_at": { "type": "date" }
  }
}