- Overview
-
Rest API Schemas
- Application schema
- Application message request
- Application message response
- Application reject request
- Application reject response
- Candidate schema
- Candidate get response
- Candidate search request
- Candidate search response
- Dossier schema
- Dossier get response
- Dossier search request
- Dossier search response
- Profile schema
- Profile get response
- Publication schema
- Publication publish request
- Publication publish response
- Publication get response
- Publication abort response
-
Integration API Schemas
- Application schema
- Application apply request
- Application apply response
- Application message request
- Application message response
- Application retract request
- Application retract response
- Application update request
- Application update response
- Publication schema
- Publication fetch response
- Publication fetched response
- Resource Schemas
- Error Schemas
Job Sector
xeebo job sector schema
JSON schema
- {
- "$schema": "http://json-schema.org/draft-04/schema",
- "id": "http://api.xeebo.com/schema/xeebo-job-sector-schema-v1.0.0.json",
- "title": "Job Sector",
- "description": "xeebo job sector schema",
- "type": "object",
- "definitions": {
- "versionType": {
- "title": "Schema Version",
- "description": "Schema version string",
- "type": "string",
- "pattern": "^[0-9]\\.[0-9]\\.[0-9]$"
- },
- "translationType": {
- "title": "Translation",
- "description": "Translation label using iso-639-alpha-2 language locale as key",
- "type": "string"
- },
- "dataType": {
- "title": "Job Sector Data",
- "description": "Job sector data structure",
- "patternProperties": {
- "^[a-z]{1}$": {
- "$ref": "#/definitions/translationType"
- }
- }
- }
- },
- "properties": {
- "version": {
- "$ref": "#/definitions/versionType"
- },
- "data": {
- "$ref": "#/definitions/dataType"
- }
- },
- "additionalProperties": false
- }
JSON schema data description
Path/Attribute | Title | Description | Required |
---|---|---|---|
version | Schema Version | Schema version string | optional |
data | Job Sector Data | Job sector data structure | optional |