github.com/jbking/gohan@v0.0.0-20151217002006-b41ccf1c2a96/extension/framework/runner/test_data/other_schema.yaml (about)

     1  schemas:
     2  - description: Test object
     3    id: test_object
     4    parent: ""
     5    plural: test_objects
     6    schema:
     7      properties:
     8        id:
     9          format: uuid
    10          permission:
    11          - create
    12          title: ID
    13          type: string
    14          unique: true
    15        name:
    16          default: ""
    17          permission:
    18          - create
    19          - update
    20          title: Name
    21          type: string
    22          unique: false
    23        tenant_id:
    24          format: uuid
    25          permission:
    26          - create
    27          title: Tenant id
    28          type: string
    29          unique: false
    30      propertiesOrder:
    31      - name
    32      - id
    33      - tenant_id
    34    singular: test_object
    35    title: Test Object