app-admin_essentials Schemas

On this page:

configProps-schema

{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "configProps-schema", "type": "object", "title": "The Service Config Properties Schema", "description": "The service config properties schema comprises the entire JSON document.", "required": [ "type", "hostname", "path", "credentials" ], "properties": { "type": { "$id": "#/properties/repository/properties/type", "type": "string", "title": "The Type Schema", "examples": [ "gitlab" ] }, "hostname": { "$id": "#/properties/repository/properties/hostname", "type": "string", "title": "The Hostname Schema", "examples": [ "gitlab.com" ] }, "path": { "$id": "#/properties/repository/properties/path", "type": "string", "title": "The Path Schema", "examples": [ "/api/v4/groups/itentialopensource%2Fpre-built-automations" ] }, "credentials": { "$id": "#/properties/repository/properties/credentials", "type": "object", "title": "The Credentials Schema", "properties": { "token": { "$id": "#/properties/repository/properties/credentials/properties/token", "type": "string", "examples": [ "zEuTcdEGcsWTqLZNHTgL" ] } } } } }