Download OpenAPI specification:Download
OpenMetadataIO is a REST-based API enabling permissioned access to versioned metadata in a heterogeneous media supply chain. The purpose of OMIO is to create a common source of truth for metadata across production, pre-production and post-production workflows; today those workflows consist of disconnected ISV solutions reading and writing metadata to their own proprietary datastores, often requiring elaborate export/import and validation procedures to ensure integrity of metadata from one step to the next.
OpenMetadataIO seeks to solve this problem by offering a unified API for accessing metadata across all of these applications.
Below is the draft specification for the OpenMetadataIO API.
CRUDL operations for Assets, as defined by the OMC schema. Can be extended with custom properties.
Create new Assets in OMIO and receive an OMC identifier.
This action creates a new Asset within OpenMetadataIO, which can later be retrieved using its Identifier.
| schemaVersion required | string (schemaVersion) Value: "https://movielabs.com/omc/json/schema/v2.0" Describes the version of OMC-JSON schema that was used to create this instance |
| entityType required | string (Entity Type) Value: "Asset" |
required | Array of objects (properties-identifier) non-empty An identifier uniquely identifies an entity within a particular scope. |
| name | string or null (Asset name) A human readable name for the asset |
| description | string or null (Asset description) A human readable description of the asset |
object (Asset Version Information) A particular form, variant, or representation of an Asset that differs in some way from its source Asset. | |
object (provenance) A record of when something was changed and by whom. | |
Array of (Reference entity (object or null)) or Asset (object) or null (Asset Group) The set of Assets that make up an an asset group and has a structuralType of 'assetGroup' | |
(Reference entity (object or null)) or Asset Structural Characteristics (object) (Structural Characteristics) | |
Asset Functional Characteristics (null) or Asset Functional Characteristics (object) or Asset Functional Characteristics (object) or Asset Functional Characteristics (object) (assetFC) | |
Array of (Reference entity (object or null)) or any or null | |
Array of (Reference entity (object or null)) or any or null | |
object (customData) A user defined set of custom data in the payload of the instance, used where the formal schema lacks required properties | |
object or null (entityInfo) Reserved for future use to describe specific details about the instance of the entity |
{- "properties": {
- "version": {
- "versionNumber": "1.2.3",
- "name": "Updated Action Sequence",
- "description": "This is where Og the bear attacks our hero."
}, - "annotation": {
- "title": "Make this funnier!",
- "text": "Why can't the bear be wearing hilarious bloomers?"
}, - "RevisionOf": {
- "identifier": [
- "some-old-mam",
- "abcd1234"
]
}
}
}{- "created": true,
- "identifier": [
- "some-mam",
- "abcd1234"
]
}Returns an Asset object, given that Asset's unique ID
| omc-id required | string A URL-encoded string representing the union of identifierScope and identifierValue. |
{- "data": {
- "entityType": "Asset",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "name": "string",
- "description": "string",
- "version": {
- "versionNumber": "string",
- "name": "string",
- "description": "string",
- "annotation": [
- {
- "title": "string",
- "text": "string"
}
], - "DerivationOf": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "RevisionOf": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "VariantOf": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "Alternative": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Derivation": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Revision": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Variant": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "customData": { }
}, - "provenance": {
- "CreatedBy": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "Role": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "createdOn": "2023-08-24T20:51:15Z\n2023-08-24T20:51:15.56Z\n2023-08-24T20:51:15+08:00\n2023-08-24T20:51:15.23-04:00",
- "Origin": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "reason": "string",
- "note": [
- {
- "title": "string",
- "text": "string"
}
]
}, - "Asset": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "AssetSC": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "assetFC": { },
- "Context": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Depiction": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "customData": { },
- "entityInfo": { }
}, - "meta": {
- "msg": "OK",
- "response_id": "57eea03c72381f86e05c35d2",
- "status": 200
}
}Updates the details of an already-created Asset with the provided OMC ID.
| omc-id required | string A URL-encoded string representing the union of identifierScope and identifierValue. |
| schemaVersion required | string (schemaVersion) Value: "https://movielabs.com/omc/json/schema/v2.0" Describes the version of OMC-JSON schema that was used to create this instance |
| entityType required | string (Entity Type) Value: "Asset" |
required | Array of objects (properties-identifier) non-empty An identifier uniquely identifies an entity within a particular scope. |
| name | string or null (Asset name) A human readable name for the asset |
| description | string or null (Asset description) A human readable description of the asset |
object (Asset Version Information) A particular form, variant, or representation of an Asset that differs in some way from its source Asset. | |
object (provenance) A record of when something was changed and by whom. | |
Array of (Reference entity (object or null)) or Asset (object) or null (Asset Group) The set of Assets that make up an an asset group and has a structuralType of 'assetGroup' | |
(Reference entity (object or null)) or Asset Structural Characteristics (object) (Structural Characteristics) | |
Asset Functional Characteristics (null) or Asset Functional Characteristics (object) or Asset Functional Characteristics (object) or Asset Functional Characteristics (object) (assetFC) | |
Array of (Reference entity (object or null)) or any or null | |
Array of (Reference entity (object or null)) or any or null | |
object (customData) A user defined set of custom data in the payload of the instance, used where the formal schema lacks required properties | |
object or null (entityInfo) Reserved for future use to describe specific details about the instance of the entity |
{- "entityType": "Asset",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "name": "string",
- "description": "string",
- "version": {
- "versionNumber": "string",
- "name": "string",
- "description": "string",
- "annotation": [
- {
- "title": "string",
- "text": "string"
}
], - "DerivationOf": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "RevisionOf": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "VariantOf": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "Alternative": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Derivation": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Revision": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Variant": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "customData": { }
}, - "provenance": {
- "CreatedBy": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "Role": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "createdOn": "2023-08-24T20:51:15Z\n2023-08-24T20:51:15.56Z\n2023-08-24T20:51:15+08:00\n2023-08-24T20:51:15.23-04:00",
- "Origin": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "reason": "string",
- "note": [
- {
- "title": "string",
- "text": "string"
}
]
}, - "Asset": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "AssetSC": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "assetFC": { },
- "Context": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Depiction": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "customData": { },
- "entityInfo": { }
}{- "data": {
- "entityType": "Asset",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "name": "string",
- "description": "string",
- "version": {
- "versionNumber": "string",
- "name": "string",
- "description": "string",
- "annotation": [
- {
- "title": "string",
- "text": "string"
}
], - "DerivationOf": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "RevisionOf": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "VariantOf": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "Alternative": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Derivation": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Revision": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Variant": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "customData": { }
}, - "provenance": {
- "CreatedBy": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "Role": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "createdOn": "2023-08-24T20:51:15Z\n2023-08-24T20:51:15.56Z\n2023-08-24T20:51:15+08:00\n2023-08-24T20:51:15.23-04:00",
- "Origin": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "reason": "string",
- "note": [
- {
- "title": "string",
- "text": "string"
}
]
}, - "Asset": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "AssetSC": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "assetFC": { },
- "Context": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Depiction": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "customData": { },
- "entityInfo": { }
}, - "meta": {
- "msg": "OK",
- "response_id": "57eea03c72381f86e05c35d2",
- "status": 200
}
}Returns the list of Assets associated with this Asset's unique ID
| omc-id required | string A URL-encoded string representing the union of identifierScope and identifierValue. |
{- "data": [
- [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
], - "meta": {
- "msg": "OK",
- "response_id": "57eea03c72381f86e05c35d2",
- "status": 200
}, - "pagination": {
- "count": 25,
- "offset": 75,
- "total_count": 250
}
}CRUDL operations for Participants, as defined by the OMC schema. Can be extended with custom properties.
Create new participants in OMIO and receive an OMC identifier.
This action creates a new Participant within OpenMetadataIO, which can later be retrieved using its Identifier.
object (Participant) The entities (people, organizations, and services) that are responsible for the production of the Creative Work. | |
object (Person) People are the individuals that are associated with the production | |
object (Department) Part of a larger Organization with a particular set of responsibilities on the production. | |
object (Organization) A legal entity or groups of people associated with the production.. with a particular purpose relative to the production. | |
object (Service) A computer driven agent that can perform tasks given the proper context and structured data. | |
object (Role) A set of properties that define the role of a participant within the production |
{- "Participant": {
- "entityType": "Participant",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "name": "string",
- "description": "string",
- "ParticipantSC": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "participantFC": {
- "functionalType": "string",
- "jobTitle": "string",
- "Role": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
]
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "Participant": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "customData": { },
- "Context": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Depiction": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "entityInfo": { }
}, - "Person": {
- "entityType": "Person",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "person",
- "name": "string",
- "description": "string",
- "jobTitle": "string",
- "Location": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "gender": {
- "gender": "male",
- "genderPronoun": "he/him"
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "personName": {
- "firstGivenName": "string",
- "secondGivenName": "string",
- "familyName": "string",
- "fullName": "string",
- "birthName": "string",
- "primaryName": "string",
- "pseudonym": "string",
- "altName": "string",
- "translatedName": "string",
- "nickname": "string",
- "moniker": "string",
- "alias": "string",
- "contractualName": "string",
- "displayName": "string",
- "sortName": "string",
- "scriptName": "string",
- "prefix": "Mrs",
- "suffix": "MBE"
}, - "customData": { },
- "entityInfo": { }
}, - "Department": {
- "entityType": "Department",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "department",
- "name": "string",
- "description": "string",
- "departmentName": {
- "fullName": "string",
- "altName": "string"
}, - "Location": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "customData": { },
- "entityInfo": { }
}, - "Organization": {
- "entityType": "Organization",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "organization",
- "name": "string",
- "description": "string",
- "organizationName": {
- "fullName": "string",
- "altName": "string"
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "Location": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "customData": { },
- "entityInfo": { }
}, - "Service": {
- "entityType": "Service",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "service",
- "name": "string",
- "description": "string",
- "serviceName": {
- "fullName": "string",
- "altName": "string"
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "customData": { },
- "entityInfo": { }
}, - "Role": {
- "entityType": "Role",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "name": "Director",
- "description": "string",
- "roleType": "string",
- "customData": { },
- "entityInfo": { }
}
}{- "created": true,
- "identifier": [
- "prod-pro",
- "abcd1234"
]
}Returns a Participant object, given that Participant's unique ID
| omc-id required | string A URL-encoded string representing the union of identifierScope and identifierValue. |
{- "data": {
- "Participant": {
- "entityType": "Participant",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "name": "string",
- "description": "string",
- "ParticipantSC": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "participantFC": {
- "functionalType": "string",
- "jobTitle": "string",
- "Role": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
]
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "Participant": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "customData": { },
- "Context": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Depiction": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "entityInfo": { }
}, - "Person": {
- "entityType": "Person",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "person",
- "name": "string",
- "description": "string",
- "jobTitle": "string",
- "Location": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "gender": {
- "gender": "male",
- "genderPronoun": "he/him"
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "personName": {
- "firstGivenName": "string",
- "secondGivenName": "string",
- "familyName": "string",
- "fullName": "string",
- "birthName": "string",
- "primaryName": "string",
- "pseudonym": "string",
- "altName": "string",
- "translatedName": "string",
- "nickname": "string",
- "moniker": "string",
- "alias": "string",
- "contractualName": "string",
- "displayName": "string",
- "sortName": "string",
- "scriptName": "string",
- "prefix": "Mrs",
- "suffix": "MBE"
}, - "customData": { },
- "entityInfo": { }
}, - "Department": {
- "entityType": "Department",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "department",
- "name": "string",
- "description": "string",
- "departmentName": {
- "fullName": "string",
- "altName": "string"
}, - "Location": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "customData": { },
- "entityInfo": { }
}, - "Organization": {
- "entityType": "Organization",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "organization",
- "name": "string",
- "description": "string",
- "organizationName": {
- "fullName": "string",
- "altName": "string"
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "Location": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "customData": { },
- "entityInfo": { }
}, - "Service": {
- "entityType": "Service",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "service",
- "name": "string",
- "description": "string",
- "serviceName": {
- "fullName": "string",
- "altName": "string"
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "customData": { },
- "entityInfo": { }
}, - "Role": {
- "entityType": "Role",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "name": "Director",
- "description": "string",
- "roleType": "string",
- "customData": { },
- "entityInfo": { }
}
}, - "meta": {
- "msg": "OK",
- "response_id": "57eea03c72381f86e05c35d2",
- "status": 200
}
}Updates the details of an already-created participant with the provided OMC ID.
| omc-id required | string A URL-encoded string representing the union of identifierScope and identifierValue. |
object (Participant) The entities (people, organizations, and services) that are responsible for the production of the Creative Work. | |
object (Person) People are the individuals that are associated with the production | |
object (Department) Part of a larger Organization with a particular set of responsibilities on the production. | |
object (Organization) A legal entity or groups of people associated with the production.. with a particular purpose relative to the production. | |
object (Service) A computer driven agent that can perform tasks given the proper context and structured data. | |
object (Role) A set of properties that define the role of a participant within the production |
{- "Participant": {
- "entityType": "Participant",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "name": "string",
- "description": "string",
- "ParticipantSC": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "participantFC": {
- "functionalType": "string",
- "jobTitle": "string",
- "Role": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
]
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "Participant": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "customData": { },
- "Context": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Depiction": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "entityInfo": { }
}, - "Person": {
- "entityType": "Person",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "person",
- "name": "string",
- "description": "string",
- "jobTitle": "string",
- "Location": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "gender": {
- "gender": "male",
- "genderPronoun": "he/him"
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "personName": {
- "firstGivenName": "string",
- "secondGivenName": "string",
- "familyName": "string",
- "fullName": "string",
- "birthName": "string",
- "primaryName": "string",
- "pseudonym": "string",
- "altName": "string",
- "translatedName": "string",
- "nickname": "string",
- "moniker": "string",
- "alias": "string",
- "contractualName": "string",
- "displayName": "string",
- "sortName": "string",
- "scriptName": "string",
- "prefix": "Mrs",
- "suffix": "MBE"
}, - "customData": { },
- "entityInfo": { }
}, - "Department": {
- "entityType": "Department",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "department",
- "name": "string",
- "description": "string",
- "departmentName": {
- "fullName": "string",
- "altName": "string"
}, - "Location": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "customData": { },
- "entityInfo": { }
}, - "Organization": {
- "entityType": "Organization",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "organization",
- "name": "string",
- "description": "string",
- "organizationName": {
- "fullName": "string",
- "altName": "string"
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "Location": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "customData": { },
- "entityInfo": { }
}, - "Service": {
- "entityType": "Service",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "service",
- "name": "string",
- "description": "string",
- "serviceName": {
- "fullName": "string",
- "altName": "string"
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "customData": { },
- "entityInfo": { }
}, - "Role": {
- "entityType": "Role",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "name": "Director",
- "description": "string",
- "roleType": "string",
- "customData": { },
- "entityInfo": { }
}
}{- "data": {
- "Participant": {
- "entityType": "Participant",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "name": "string",
- "description": "string",
- "ParticipantSC": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "participantFC": {
- "functionalType": "string",
- "jobTitle": "string",
- "Role": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
]
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "Participant": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "customData": { },
- "Context": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "Depiction": [
- {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}
], - "entityInfo": { }
}, - "Person": {
- "entityType": "Person",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "person",
- "name": "string",
- "description": "string",
- "jobTitle": "string",
- "Location": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "gender": {
- "gender": "male",
- "genderPronoun": "he/him"
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "personName": {
- "firstGivenName": "string",
- "secondGivenName": "string",
- "familyName": "string",
- "fullName": "string",
- "birthName": "string",
- "primaryName": "string",
- "pseudonym": "string",
- "altName": "string",
- "translatedName": "string",
- "nickname": "string",
- "moniker": "string",
- "alias": "string",
- "contractualName": "string",
- "displayName": "string",
- "sortName": "string",
- "scriptName": "string",
- "prefix": "Mrs",
- "suffix": "MBE"
}, - "customData": { },
- "entityInfo": { }
}, - "Department": {
- "entityType": "Department",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "department",
- "name": "string",
- "description": "string",
- "departmentName": {
- "fullName": "string",
- "altName": "string"
}, - "Location": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "customData": { },
- "entityInfo": { }
}, - "Organization": {
- "entityType": "Organization",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "organization",
- "name": "string",
- "description": "string",
- "organizationName": {
- "fullName": "string",
- "altName": "string"
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "Location": {
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
}, - "customData": { },
- "entityInfo": { }
}, - "Service": {
- "entityType": "Service",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "structuralType": "service",
- "name": "string",
- "description": "string",
- "serviceName": {
- "fullName": "string",
- "altName": "string"
}, - "contact": {
- "email": {
- "business": "string",
- "personal": "string"
}, - "telephone": {
- "business": "string",
- "personal": "string"
}
}, - "customData": { },
- "entityInfo": { }
}, - "Role": {
- "entityType": "Role",
- "identifier": [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
], - "name": "Director",
- "description": "string",
- "roleType": "string",
- "customData": { },
- "entityInfo": { }
}
}, - "meta": {
- "msg": "OK",
- "response_id": "57eea03c72381f86e05c35d2",
- "status": 200
}
}Returns the list of Participants associated with this participant's unique ID
| omc-id required | string A URL-encoded string representing the union of identifierScope and identifierValue. |
{- "data": [
- [
- {
- "identifierScope": "string",
- "identifierValue": "string"
}
]
], - "meta": {
- "msg": "OK",
- "response_id": "57eea03c72381f86e05c35d2",
- "status": 200
}, - "pagination": {
- "count": 25,
- "offset": 75,
- "total_count": 250
}
}CRUDL operations for Roles, which can be assigned to Participants and used to grant or deny access to metadata within OMIO.
Extend the core OMC schema by specifying additional required fields for Assets, Participants and Roles.